summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/mii/mii_util.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/mii/mii_util.h')
-rw-r--r--src/core/hle/service/mii/mii_util.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/mii/mii_util.h b/src/core/hle/service/mii/mii_util.h
index 782ffe22f..ddb544c23 100644
--- a/src/core/hle/service/mii/mii_util.h
+++ b/src/core/hle/service/mii/mii_util.h
@@ -4,6 +4,7 @@
#pragma once
#include <random>
+#include <span>
#include "common/common_types.h"
#include "common/swap.h"
@@ -51,7 +52,7 @@ public:
}
static bool IsFontRegionValid(FontRegion font, std::span<const char16_t> text) {
- // Todo:: This function needs to check against the font tables
+ // TODO: This function needs to check against the font tables
return true;
}
};